<!DOCTYPE html>
<html lang="en">
  <head>
  	<?php $settings = AdminSettings::first(); ?>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="<?php echo $settings->description; ?>">
    <meta name="keywords" content="<?php echo $settings->keywords; ?>" />
     <link rel="shortcut icon" href="<?php echo URL::asset('public/img/favicon.ico'); ?>" />

    <title><?php echo Lang::get('error.error_404_description'); ?> - <?php $__env->startSection('titulo'); ?> 
    	<?php echo $__env->yieldSection(); ?>  
    	<?php if( isset( $settings->title ) ): ?> <?php echo $settings->title; ?>

    	<?php endif; ?> </title>

    <?php echo $__env->make('includes.css_general', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

  </head>
  
  <body id="bg-error">
    <!-- container -->
    <div class="container wrap-error">
    <!-- row -->
    <div class="row col-pb">

      <div class="col-md-12 text-center">
      	<h1 class="title-error"><?php echo Lang::get('error.error_404'); ?></h1>
      	<p class="subtitle-error"><?php echo Lang::get('error.error_404_description'); ?></p>
      	<a class="btn btn-danger" href="<?php echo URL::to('/'); ?>"><i class="icon-home myicon-right"></i> <?php echo Lang::get('error.go_home'); ?></a>
     </div><!--/col-md-* -->

    	
  </div><!--************ Row ********************-->

      
    </div><!--******************** Container ******************-->


    <?php echo $__env->make('includes.javascript_general', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    
  </body>
  </html>